From: Adrian Robert Date: Tue, 13 Oct 2009 01:03:29 +0000 (+0000) Subject: (dbus-method-return-internal, dbus-method-error-internal): Use long format in printf... X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~844^2~6631 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=603f0bf0d9bfffaca599687d9a142112a9d4eee7;p=emacs.git (dbus-method-return-internal, dbus-method-error-internal): Use long format in printf, and cast argument. --- diff --git a/src/dbusbind.c b/src/dbusbind.c index d0233fdab43..f4a5c6887d8 100644 --- a/src/dbusbind.c +++ b/src/dbusbind.c @@ -1247,7 +1247,7 @@ usage: (dbus-method-return-internal BUS SERIAL SERVICE &rest ARGS) */) CHECK_STRING (service); GCPRO3 (bus, serial, service); - XD_DEBUG_MESSAGE ("%d %s ", XUINT (serial), SDATA (service)); + XD_DEBUG_MESSAGE ("%lu %s ", (unsigned long) XUINT (serial), SDATA (service)); /* Open a connection to the bus. */ connection = xd_initialize (bus); @@ -1341,7 +1341,7 @@ usage: (dbus-method-error-internal BUS SERIAL SERVICE &rest ARGS) */) CHECK_STRING (service); GCPRO3 (bus, serial, service); - XD_DEBUG_MESSAGE ("%d %s ", XUINT (serial), SDATA (service)); + XD_DEBUG_MESSAGE ("%lu %s ", (unsigned long) XUINT (serial), SDATA (service)); /* Open a connection to the bus. */ connection = xd_initialize (bus);